home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / graphics / pixel10 / pixel.txt < prev    next >
Text File  |  1994-09-24  |  1KB  |  48 lines

  1. PIXEL BOARD 1.0
  2.  
  3. Written in Visual Basic 3.0 Prof.
  4.  
  5. Wrote this up in about 6 hours for an app I'm working on.
  6. Feel free to modify it and use it in your programs.  If
  7. you do use it and make it better, please email me with
  8. the improvements... It's not perfect but it does what I
  9. need it to.  There's not a whole lot of comments, since
  10. it's pretty straight forward.
  11.  
  12. I didn't add all the ASCII chars, since I didn't need them.
  13.  
  14. Here's the format for the character set:
  15.  
  16. char file = board.bmp
  17. Each character is 18 pixels wide.
  18. 94 Possible chars, ASC(32) to ASC(126) [inclusive]
  19.  
  20. If you wanted to add the "[" you would do the following:
  21. "["= ASC(91)
  22.  
  23. 91-32=59
  24. 59*18= 1062
  25.  
  26. Open Paint Brush
  27. load board.bmp
  28. View|Cursor Position
  29. scroll over to x = 1062
  30. draw in the "["
  31. save the bitmap
  32.  
  33. load visual basic and open the project file
  34. refresh:  picChar.Picture = board.bmp
  35.  
  36. That's it!!!
  37.  
  38. To change the message, edit:   txtMessage.Text 
  39.  
  40.  
  41. For more information please email me.
  42.  
  43.  
  44.  
  45. Damon Brodie
  46. September 24, 1994
  47. dbrodie@nbnet.nb.ca
  48.